Prskr is a niche developer focused on developer-centric security tooling, and its sole public offering, git-age, typifies that specialization: the utility plugs into Git’s smudge/clean filter pipeline to transparently encrypt files on commit and decrypt them on checkout, letting teams store sensitive configuration, keys or proprietary source in public or shared repositories without exposing plaintext. Because encryption is handled at the filter level, existing workflows—branching, merging, rebasing, diffs—remain unchanged; only the on-disk working copy is ever readable, while the object database stays persistently encrypted. The approach is especially attractive to open-source projects that need to embed private deployment credentials, to DevOps squads rotating cloud secrets across branches, or to any organization subject to compliance mandates that require data-at-rest protection for intellectual property. Integration is lightweight: a single binary, age-compatible keys, and a one-time gitconfig entry; no wrappers, GUI or background services are required, so the tool slots cleanly into CI pipelines, container builds and local IDE integrations. Prskr’s software is available for free on get.nero.com, where downloads are delivered through trusted Windows package sources such as winget, always fetch the latest version, and can be installed individually or in batch alongside other applications.

git-age

git-age is a smudge/clean filter to encrypt/decrypt files in a git repository transparently

Details